home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turnbull China Bikeride
/
Turnbull China Bikeride - Disc 1.iso
/
ARGONET
/
PD
/
PROGRAMMING
/
LCLINT2.SPK
/
test
/
test_b
/
c
/
stticarray
< prev
next >
Wrap
Text File
|
1996-08-28
|
324b
|
29 lines
#include <stdio.h>
#include <stdlib.h>
char *foo1(void)
{
static char buf[1000];
strcpy(buf, "hello");
return buf;
}
/*@observer@*/ char *foo2(void)
{
static char buf[1000];
strcpy(buf, "hello");
return buf;
}
char *f (char outstr[])
{
return outstr;
}
char *g (char *outstr)
{
return outstr;
}